home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / util / libs / MailPro.lha / MailProLibrary / include / mail / mailprobase.h < prev   
Encoding:
C/C++ Source or Header  |  1999-01-14  |  500 b   |  26 lines

  1. /*
  2. **      $VER: mailprobase.h 1.0 (1.2.99)
  3. **
  4. **      definition of MailProBase
  5. **
  6. **      (C) Copyright 1999 Sergeev O.V.
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef MAIL_MAILPROBASE_H
  11. #define MAIL_MAILPROBASE_H
  12.  
  13. #ifndef  EXEC_LIBRARIES
  14. #include <exec/libraries.h>
  15. #endif /* EXEC_LIBRARIES_H */
  16.  
  17. struct MailProBase
  18. {
  19.  struct Library         mpb_LibNode;
  20.  APTR                   mpb_SegList;
  21.  struct ExecBase       *mpb_SysBase;
  22.  struct DOSBase        *mpb_DOSBase;
  23. };
  24.  
  25. #endif /* MAIL_MAILPROBASE_H */
  26.